ComponentOne PdfViewer for WPF and Silverlight
C1.WPF.PdfViewer.4.6.2 Assembly / CSJ2K.j2k.entropy Namespace / CodedCBlk Class / CodedCBlk Constructor / CodedCBlk Constructor(Int32,Int32,Int32,Byte[])
The horizontal index of the code-block, within the subband.
The vertical index of the code-block, within the subband.
The number of skipped most significant bit-planes for this code-block.
The compressed data. This array is referenced by this object so it should not be modified after.

In This Topic
    CodedCBlk Constructor(Int32,Int32,Int32,Byte[])
    In This Topic
    Creates a new CodedCBlk object with the specified values.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal m As Integer, _
       ByVal n As Integer, _
       ByVal skipMSBP As Integer, _
       ByVal data() As Byte _
    )
    public CodedCBlk( 
       int m,
       int n,
       int skipMSBP,
       byte[] data
    )

    Parameters

    m
    The horizontal index of the code-block, within the subband.
    n
    The vertical index of the code-block, within the subband.
    skipMSBP
    The number of skipped most significant bit-planes for this code-block.
    data
    The compressed data. This array is referenced by this object so it should not be modified after.
    See Also